home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / statone / unit2.dfm / unit2.txt
Text File  |  1996-09-15  |  2KB  |  62 lines

  1. object Form2: TForm2
  2.   Left = 346
  3.   Top = 196
  4.   BorderStyle = bsDialog
  5.   Caption = 'Univariat Statistics Help'
  6.   ClientHeight = 269
  7.   ClientWidth = 423
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   KeyPreview = True
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnKeyPress = FormKeyPress
  16.   TextHeight = 16
  17.   object Memo1: TMemo
  18.     Left = 0
  19.     Top = 0
  20.     Width = 423
  21.     Height = 269
  22.     Align = alClient
  23.     Lines.Strings = (
  24.       'This program is Freeware. Comments welcome.'
  25.       'Ted Kahn, tedkahn@interramp.com'
  26.       ''
  27.       'INSTRUCTIONS'
  28.       '-------------------------'
  29.       'Enter values in the upper left window, one value per line. '
  30.       'Press Calculate to see the statistics. The sorted values are '
  31.       'shown in the right window.'
  32.       ''
  33.       'BISQUARE'
  34.       '-------------------------'
  35.       'The Bisquare is a robust measure of central tendency. Its '
  36.       'value will generally be between the mean and median.'
  37.       ''
  38.       'By robust, we mean that extreme values are weighted less,  '
  39.       'thus having a smaller influence on the statistic. See Data'
  40.       'Analysis and Regression by Mosteller and Tukey (Addison '
  41.       'and Wesley).'
  42.       ''
  43.       'Use the parameter C to tune the statistic. A value of 3 causes'
  44.       'the Bisquare to more closely follow the mean, while a value '
  45.       'of 9 causes it be close to the median.'
  46.       ''
  47.       'Because the Bisquare is an iterative algorithm, it will take a '
  48.       'bit longer to calculate.'
  49.       ''
  50.       'NOTES'
  51.       '-------------------------'
  52.       '1) Make sure all values are valid numbers, one per line.'
  53.       '2) Use the File button to read an ASCII file, one number per '
  54.       'line.'
  55.       '3) The Geometric and Harmonic means use values only > 0.'
  56.       '4) The maximum number of values is 8,000.')
  57.     ReadOnly = True
  58.     ScrollBars = ssVertical
  59.     TabOrder = 0
  60.   end
  61. end
  62.